home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / src / rcs / DIFFsource.Z / DIFFsource / util.c < prev    next >
C/C++ Source or Header  |  1995-02-28  |  15KB  |  618 lines

  1. /* Support routines for GNU DIFF.
  2.    Copyright (C) 1988, 1989 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU DIFF.
  5.  
  6. GNU DIFF is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU DIFF is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU DIFF; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "diff.h"
  21.  
  22. /* Use when a system call returns non-zero status.
  23.    TEXT should normally be the file name.  */
  24.  
  25. void
  26. perror_with_name (text)
  27.      char *text;
  28. {
  29.   fprintf (stderr, "%s: ", program);
  30.   perror (text);
  31. }
  32.  
  33. /* Use when a system call returns non-zero status and that is fatal.  */
  34.  
  35. void
  36. pfatal_with_name (text)
  37.      char *text;
  38. {
  39.   print_message_queue ();
  40.   fprintf (stderr, "%s: ", program);
  41.   perror (text);
  42.   exit (2);
  43. }
  44.  
  45. /* Print an error message from the format-string FORMAT
  46.    with args ARG1 and ARG2.  */
  47.  
  48. void
  49. error (format, arg, arg1)
  50.      char *format;
  51.      char *arg;
  52.      char *arg1;
  53. {
  54.   fprintf (stderr, "%s: ", program);
  55.   fprintf (stderr, format, arg, arg1);
  56.   fprintf (stderr, "\n");
  57. }
  58.  
  59. /* Print an error message containing the string TEXT, then exit.  */
  60.  
  61. void
  62. fatal (message)
  63.      char *message;
  64. {
  65.   print_message_queue ();
  66.   error (message, "");
  67.   exit (2);
  68. }
  69.  
  70. /* Like printf, except if -l in effect then save the message and print later.
  71.    This is used for things like "binary files differ" and "Only in ...".  */
  72.  
  73. void
  74. message (format, arg1, arg2)
  75.      char *format, *arg1, *arg2;
  76. {
  77.   if (paginate_flag)
  78.     {
  79.       struct msg *new = (struct msg *) xmalloc (sizeof (struct msg));
  80.       if (msg_chain_end == 0)
  81.     msg_chain = msg_chain_end = new;
  82.       else
  83.     {
  84.       msg_chain_end->next = new;
  85.       msg_chain_end = new;
  86.     }
  87.       new->format = format;
  88.       new->arg1 = concat (arg1, "", "");
  89.       new->arg2 = concat (arg2, "", "");
  90.       new->next = 0;
  91.     }
  92.   else
  93.     printf (format, arg1, arg2);
  94. }
  95.  
  96. /* Output all the messages that were saved up by calls to `message'.  */
  97.  
  98. void
  99. print_message_queue ()
  100. {
  101.   struct msg *m;
  102.  
  103.   for (m = msg_chain; m; m = m->next)
  104.     printf (m->format, m->arg1, m->arg2);
  105. }
  106.  
  107. /* Call before outputting the results of comparing files NAME0 and NAME1
  108.    to set up OUTFILE, the stdio stream for the output to go to.
  109.  
  110.    Usually, OUTFILE is just stdout.  But when -l was specified
  111.    we fork off a `pr' and make OUTFILE a pipe to it.
  112.    `pr' then outputs to our stdout.  */
  113.  
  114. void
  115. setup_output (name0, name1, depth)
  116.      char *name0, *name1;
  117.      int depth;
  118. {
  119.   char *name;
  120.  
  121.   /* Construct the header of this piece of diff.  */
  122.   name = (char *) xmalloc (strlen (name0) + strlen (name1)
  123.                + strlen (switch_string) + 15);
  124.  
  125.   strcpy (name, "diff");
  126.   strcat (name, switch_string);
  127.   strcat (name, " ");
  128.   strcat (name, name0);
  129.   strcat (name, " ");
  130.   strcat (name, name1);
  131.  
  132.   if (paginate_flag)
  133.     {
  134.       int pipes[2];
  135.       int desc;
  136.  
  137.       /* For a `pr' and make OUTFILE a pipe to it.  */
  138.       if (pipe (pipes) < 0)
  139.     pfatal_with_name ("pipe");
  140.  
  141.       fflush (stdout);
  142.  
  143.       desc = vfork ();
  144.       if (desc < 0)
  145.     pfatal_with_name ("vfork");
  146.  
  147.       if (desc == 0)
  148.     {
  149.       close (pipes[1]);
  150.       if (pipes[0] != fileno (stdin))
  151.         {
  152.           if (dup2 (pipes[0], fileno (stdin)) < 0)
  153.         pfatal_with_name ("dup2");
  154.           close (pipes[0]);
  155.         }
  156.  
  157.       if (execl (PR_FILE_NAME, PR_FILE_NAME, "-f", "-h", name, 0) < 0)
  158.         pfatal_with_name (PR_FILE_NAME);
  159.     }
  160.       else
  161.     {
  162.       close (pipes[0]);
  163.       outfile = fdopen (pipes[1], "w");
  164.     } 
  165.     }
  166.   else
  167.     {
  168.  
  169.       /* If -l was not specified, output the diff straight to `stdout'.  */
  170.  
  171.       outfile = stdout;
  172.  
  173.       /* If handling multiple files (because scanning a directory),
  174.      print which files the following output is about.  */
  175.       if (depth > 0)
  176.     printf ("%s\n", name);
  177.     }
  178.  
  179.   free (name);
  180. }
  181.  
  182. /* Call after the end of output of diffs for one file.
  183.    Close OUTFILE and get rid of the `pr' subfork.  */
  184.  
  185. void
  186. finish_output ()
  187. {
  188.   if (outfile != stdout)
  189.     {
  190.       fclose (outfile);
  191.       wait (0);
  192.     }
  193. }
  194.  
  195. /* Compare two lines (typically one from each input file)
  196.    according to the command line options.
  197.    Each line is described by a `struct line_def'.
  198.    Return 1 if the lines differ, like `bcmp'.  */
  199.  
  200. int
  201. line_cmp (s1, s2)
  202.      struct line_def *s1, *s2;
  203. {
  204.   register char *t1, *t2;
  205.   register char end_char = line_end_char;
  206.  
  207.   /* Check first for exact identity.
  208.      If that is true, return 0 immediately.
  209.      This detects the common case of exact identity
  210.      faster than complete comparison would.
  211.      The check for equal lengths is almost always not needed.
  212.      Only if the last line of two files both hash to the same
  213.      value, and the last line in the first file is a prefix
  214.      of the last line in the second file, and the first file
  215.      lacks a trailing newline, and length_varies is set,
  216.      and a ROBUST output style is chosen (which doesnt include
  217.      the artificial final newline in the length of the final line)
  218.      THEN does the length compare become critical to avoid falsely
  219.      concluding that the two lines are the same.  Many thanks
  220.      to Paul Eggert for noticing this bug.  */
  221.  
  222.   if (s1->length == s2->length
  223.       && memcmp (s1->text, s2->text, s1->length) == 0)
  224.     return 0;
  225.  
  226.   /* Not exactly identical, but perhaps they match anyway
  227.      when case or whitespace is ignored.  */
  228.  
  229.   if (ignore_case_flag || ignore_space_change_flag || ignore_all_space_flag)
  230.     {
  231.       t1 = s1->text;
  232.       t2 = s2->text;
  233.  
  234.       while (1)
  235.     {
  236.       register char c1 = *t1++;
  237.       register char c2 = *t2++;
  238.  
  239.       /* Ignore horizontal whitespace if -b or -w is specified.  */
  240.  
  241.       if (ignore_all_space_flag)
  242.         {
  243.           /* For -w, just skip past any spaces or tabs.  */
  244.           while (c1 == ' ' || c1 == '\t') c1 = *t1++;
  245.           while (c2 == ' ' || c2 == '\t') c2 = *t2++;
  246.         }
  247.       else if (ignore_space_change_flag)
  248.         {
  249.           /* For -b, advance past any sequence of whitespace in line 1
  250.          and consider it just one Space, or nothing at all
  251.          if it is at the end of the line.  */
  252.           if (c1 == ' ' || c1 == '\t')
  253.         {
  254.           while (1)
  255.             {
  256.               c1 = *t1++;
  257.               if (c1 == end_char)
  258.             break;
  259.               if (c1 != ' ' && c1 != '\t')
  260.             {
  261.               --t1;
  262.               c1 = ' ';
  263.               break;
  264.             }
  265.             }
  266.         }
  267.  
  268.           /* Likewise for line 2.  */
  269.           if (c2 == ' ' || c2 == '\t')
  270.         {
  271.           while (1)
  272.             {
  273.               c2 = *t2++;
  274.               if (c2 == end_char)
  275.             break;
  276.               if (c2 != ' ' && c2 != '\t')
  277.             {
  278.               --t2;
  279.               c2 = ' ';
  280.               break;
  281.             }
  282.             }
  283.         }
  284.         }
  285.  
  286.       /* Upcase all letters if -i is specified.  */
  287.  
  288.       if (ignore_case_flag)
  289.         {
  290.           if (islower (c1))
  291.         c1 = toupper (c1);
  292.           if (islower (c2))
  293.         c2 = toupper (c2);
  294.         }
  295.  
  296.       if (c1 != c2)
  297.         break;
  298.       if (c1 == end_char)
  299.         return 0;
  300.     }
  301.     }
  302.  
  303.   return (1);
  304. }
  305.  
  306. /* Find the consecutive changes at the start of the script START.
  307.    Return the last link before the first gap.  */
  308.  
  309. struct change *
  310. find_change (start)
  311.      struct change *start;
  312. {
  313.   return start;
  314. }
  315.  
  316. struct change *
  317. find_reverse_change (start)
  318.      struct change *start;
  319. {
  320.   return start;
  321. }
  322.  
  323. /* Divide SCRIPT into pieces by calling HUNKFUN and
  324.    print each piece with PRINTFUN.
  325.    Both functions take one arg, an edit script.
  326.  
  327.    HUNKFUN is called with the tail of the script
  328.    and returns the last link that belongs together with the start
  329.    of the tail.
  330.  
  331.    PRINTFUN takes a subscript which belongs together (with a null
  332.    link at the end) and prints it.  */
  333.  
  334. void
  335. print_script (script, hunkfun, printfun)
  336.      struct change *script;
  337.      struct change * (*hunkfun) ();
  338.      void (*printfun) ();
  339. {
  340.   struct change *next = script;
  341.  
  342.   while (next)
  343.     {
  344.       struct change *this, *end;
  345.  
  346.       /* Find a set of changes that belong together.  */
  347.       this = next;
  348.       end = (*hunkfun) (next);
  349.  
  350.       /* Disconnect them from the rest of the changes,
  351.      making them a hunk, and remember the rest for next iteration.  */
  352.       next = end->link;
  353.       end->link = NULL;
  354. #ifdef DEBUG
  355.       debug_script (this);
  356. #endif
  357.  
  358.       /* Print this hunk.  */
  359.       (*printfun) (this);
  360.  
  361.       /* Reconnect the script so it will all be freed properly.  */
  362.       end->link = next;
  363.     }
  364. }
  365.  
  366. /* Print the text of a single line LINE,
  367.    flagging it with the characters in LINE_FLAG (which say whether
  368.    the line is inserted, deleted, changed, etc.).  */
  369.  
  370. void
  371. print_1_line (line_flag, line)
  372.      char *line_flag;
  373.      struct line_def *line;
  374. {
  375.   int length = line->length; /* must be nonzero */
  376.   const char *text = line->text; /* Help the compiler.  */
  377.   FILE *out = outfile; /* Help the compiler some more.  */
  378.  
  379.   /* If -T was specified, use a Tab between the line-flag and the text.
  380.      Otherwise use a Space (as Unix diff does).
  381.      Print neither space nor tab if line-flags are empty.  */
  382.  
  383.   if (line_flag != NULL && line_flag[0] != 0)
  384.     fprintf (out, tab_align_flag ? "%s\t" : "%s ", line_flag);
  385.  
  386.   /* Now output the contents of the line.
  387.      If -t was specified, expand tabs to spaces.
  388.      Otherwise output verbatim.  */
  389.  
  390.   if (tab_expand_flag)
  391.     {
  392.       register int column = 0;
  393.       register int i;
  394.       for (i = 0; i < line->length; i++)
  395.     {
  396.       register char c = line->text[i];
  397.       switch (c)
  398.         {
  399.         case '\t':
  400.           column++;
  401.           while (column & 7)
  402.         {
  403.           putc (' ', out);
  404.           column++;
  405.         }
  406.           c = ' ';
  407.           break;
  408.         case '\b':
  409.           column--;
  410.           break;
  411.         default:
  412.           column++;
  413.           break;
  414.         }
  415.       putc (c, out);
  416.     }
  417.     }
  418.   else
  419.     fwrite (text, sizeof (char), length, out);
  420.   if ((line_flag == NULL || line_flag[0] != 0) && text[length - 1] != '\n'
  421.       && line_end_char == '\n')
  422.     fprintf (out, "\n\\ No newline at end of file\n");
  423. }
  424.  
  425. change_letter (inserts, deletes)
  426.      int inserts, deletes;
  427. {
  428.   if (!inserts)
  429.     return 'd';
  430.   else if (!deletes)
  431.     return 'a';
  432.   else
  433.     return 'c';
  434. }
  435.  
  436. /* Translate an internal line number (an index into diff's table of lines)
  437.    into an actual line number in the input file.
  438.    The internal line number is LNUM.  FILE points to the data on the file.
  439.  
  440.    Internal line numbers count from 0 within the current chunk.
  441.    Actual line numbers count from 1 within the entire file;
  442.    in addition, they include lines ignored for comparison purposes.
  443.  
  444.    The `ltran' feature is no longer in use.  */
  445.  
  446. int
  447. translate_line_number (file, lnum)
  448.      struct file_data *file;
  449.      int lnum;
  450. {
  451.   return lnum + 1;
  452. }
  453.  
  454. void
  455. translate_range (file, a, b, aptr, bptr)
  456.      struct file_data *file;
  457.      int a, b;
  458.      int *aptr, *bptr;
  459. {
  460.   *aptr = translate_line_number (file, a - 1) + 1;
  461.   *bptr = translate_line_number (file, b + 1) - 1;
  462. }
  463.  
  464. /* Print a pair of line numbers with SEPCHAR, translated for file FILE.
  465.    If the two numbers are identical, print just one number.
  466.  
  467.    Args A and B are internal line numbers.
  468.    We print the translated (real) line numbers.  */
  469.  
  470. void
  471. print_number_range (sepchar, file, a, b)
  472.      char sepchar;
  473.      struct file_data *file;
  474.      int a, b;
  475. {
  476.   int trans_a, trans_b;
  477.   translate_range (file, a, b, &trans_a, &trans_b);
  478.  
  479.   /* Note: we can have B < A in the case of a range of no lines.
  480.      In this case, we should print the line number before the range,
  481.      which is B.  */
  482.   if (trans_b > trans_a)
  483.     fprintf (outfile, "%d%c%d", trans_a, sepchar, trans_b);
  484.   else
  485.     fprintf (outfile, "%d", trans_b);
  486. }
  487.  
  488. /* Look at a hunk of edit script and report the range of lines in each file
  489.    that it applies to.  HUNK is the start of the hunk, which is a chain
  490.    of `struct change'.  The first and last line numbers of file 0 are stored in
  491.    *FIRST0 and *LAST0, and likewise for file 1 in *FIRST1 and *LAST1. 
  492.    Note that these are internal line numbers that count from 0.
  493.  
  494.    If no lines from file 0 are deleted, then FIRST0 is LAST0+1.
  495.  
  496.    Also set *DELETES nonzero if any lines of file 0 are deleted
  497.    and set *INSERTS nonzero if any lines of file 1 are inserted.
  498.    If only ignorable lines are inserted or deleted, both are
  499.    set to 0.  */
  500.  
  501. void
  502. analyze_hunk (hunk, first0, last0, first1, last1, deletes, inserts)
  503.      struct change *hunk;
  504.      int *first0, *last0, *first1, *last1;
  505.      int *deletes, *inserts;
  506. {
  507.   int f0, l0, f1, l1, show_from, show_to;
  508.   int i;
  509.   int nontrivial = !(ignore_blank_lines_flag || ignore_regexp);
  510.   struct change *next;
  511.  
  512.   show_from = show_to = 0;
  513.  
  514.   f0 = hunk->line0;
  515.   f1 = hunk->line1;
  516.  
  517.   for (next = hunk; next; next = next->link)
  518.     {
  519.       l0 = next->line0 + next->deleted - 1;
  520.       l1 = next->line1 + next->inserted - 1;
  521.       show_from += next->deleted;
  522.       show_to += next->inserted;
  523.  
  524.       for (i = next->line0; i <= l0 && ! nontrivial; i++)
  525.     if ((!ignore_blank_lines_flag || files[0].linbuf[i].length > 1)
  526.         && (!ignore_regexp
  527.         || 0 > re_search (&ignore_regexp_compiled,
  528.                   files[0].linbuf[i].text,
  529.                   files[0].linbuf[i].length, 0,
  530.                   files[0].linbuf[i].length, 0)))
  531.       nontrivial = 1;
  532.  
  533.       for (i = next->line1; i <= l1 && ! nontrivial; i++)
  534.     if ((!ignore_blank_lines_flag || files[1].linbuf[i].length > 1)
  535.         && (!ignore_regexp
  536.         || 0 > re_search (&ignore_regexp_compiled,
  537.                   files[1].linbuf[i].text,
  538.                   files[1].linbuf[i].length, 0,
  539.                   files[1].linbuf[i].length, 0)))
  540.       nontrivial = 1;
  541.     }
  542.  
  543.   *first0 = f0;
  544.   *last0 = l0;
  545.   *first1 = f1;
  546.   *last1 = l1;
  547.  
  548.   /* If all inserted or deleted lines are ignorable,
  549.      tell the caller to ignore this hunk.  */
  550.  
  551.   if (!nontrivial)
  552.     show_from = show_to = 0;
  553.  
  554.   *deletes = show_from;
  555.   *inserts = show_to;
  556. }
  557.  
  558. /* malloc a block of memory, with fatal error message if we can't do it. */
  559.  
  560. VOID *
  561. xmalloc (size)
  562.      unsigned size;
  563. {
  564.   register VOID *value;
  565.  
  566.   if (size == 0)
  567.     size = 1;
  568.  
  569.   value = (VOID *) malloc (size);
  570.  
  571.   if (!value)
  572.     fatal ("virtual memory exhausted");
  573.   return value;
  574. }
  575.  
  576. /* realloc a block of memory, with fatal error message if we can't do it. */
  577.  
  578. VOID *
  579. xrealloc (old, size)
  580.      VOID *old;
  581.      unsigned int size;
  582. {
  583.   register VOID *value;
  584.  
  585.   if (size == 0)
  586.     size = 1;
  587.  
  588.   value = (VOID *) realloc (old, size);
  589.  
  590.   if (!value)
  591.     fatal ("virtual memory exhausted");
  592.   return value;
  593. }
  594.  
  595. /* Concatenate three strings, returning a newly malloc'd string.  */
  596.  
  597. char *
  598. concat (s1, s2, s3)
  599.      char *s1, *s2, *s3;
  600. {
  601.   int len = strlen (s1) + strlen (s2) + strlen (s3);
  602.   char *new = (char *) xmalloc (len + 1);
  603.   strcpy (new, s1);
  604.   strcat (new, s2);
  605.   strcat (new, s3);
  606.   return new;
  607. }
  608.  
  609. debug_script (sp)
  610.      struct change *sp;
  611. {
  612.   fflush (stdout);
  613.   for (; sp; sp = sp->link)
  614.     fprintf (stderr, "%3d %3d delete %d insert %d\n",
  615.          sp->line0, sp->line1, sp->deleted, sp->inserted);
  616.   fflush (stderr);
  617. }
  618.